python exception with line number

85

python exception with line number -

try:
    raise NotImplementedError("Not implemented")
except Exception as e:
    exception_type, exception_object, exception_traceback = sys.exc_info()
    filename = exception_traceback.tb_frame.f_code.co_filename
    line_number = exception_traceback.tb_lineno

    print("Exception type: ", exception_type)
    print("File name: ", filename)
    print("Line number: ", line_number)

exception get line number python -

import traceback

try:
    print(4/0)
except ZeroDivisionError:
    print(traceback.format_exc())

Comments

Submit
0 Comments